8c91be9e2fe478038aa1bf327c9e88d5a040fc77,uitest/src/com/vaadin/tests/components/grid/GridElement.java,GridElement,getFooterCell,#number#number#,98
Before Change
* @return Footer cell element with given indices.
*/
public TestBenchElement getFooterCell(int rowIndex, int colIndex) {
return getSubPart("#footer[" + rowIndex + "][" + colIndex + "]");
}
/**
After Change
* @return Footer cell element with given indices.
*/
public GridCellElement getFooterCell(int rowIndex, int colIndex) {
return getSubPart("#footer[" + rowIndex + "][" + colIndex + "]").wrap(
GridCellElement.class);
}
/**